home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / StarBurn 10.5 / StarBurnSetup.exe / {app} / Wizards / styles / Vista.cjstyles / TEXTFILE / NORMALBLUE_INI < prev    next >
Text (UTF-16)  |  2007-03-22  |  129KB  |  2,334 lines

  1. ;------------------------------------------
  2. ; file: Luna\default.ini
  3. ;------------------------------------------
  4. [documentation]
  5. AlphaLevel = 255   ; Images already predefined.
  6.  
  7. ;--------- Globals -------------------------
  8. [globals]
  9.  
  10. ; global edge colors (redefined in various parts) 
  11. EdgeLightColor      = 241 239 226
  12. EdgeHighLightColor  = 255 255 255
  13. EdgeShadowColor     = 172 168 153
  14. EdgeDkShadowColor   = 113 111 100 
  15. EdgeFillColor       = 236 233 216
  16.  
  17. ;--------- system metrics -------------------------------
  18. [SysMetrics]
  19. ;The system metric colors also effect non-themed controls.
  20.  
  21. ScrollbarWidth = 17
  22. ScrollbarHeight = 17
  23.  
  24. Window = 255 255 255
  25. MenuBar = 240 240 240
  26. Menu = 255 255 255
  27. Background = 0 78 152
  28. Btnface = 240 240 240
  29. Highlight = 51 153 255
  30.  
  31. ActiveCaption = 153 180 209
  32. CaptionText = 0 0 0
  33. InactiveCaption = 191 205 219
  34. InactiveCaptionText = 67 78 84
  35. GradientActiveCaption = 185 209 234
  36. GradientInactiveCaption = 215 228 242
  37. HighlightText = 255 255 255
  38. MenuHilight = 51 153 255
  39. BtnShadow = 160 160 160
  40. GrayText = 171 173 179
  41. BtnHighlight = 255 255 255
  42. DkShadow3d = 100 100 100
  43. Light3d = 227 227 227
  44.  
  45. ;---- don't remove these fonts (must specify to be localizable) ----
  46. CaptionFont = Segoe UI, 9
  47. CaptionBarHeight = 21
  48. SmallCaptionFont = Segoe UI, 9
  49. SMCaptionBarHeight = 17
  50. SMCaptionBarWidth = 17
  51. MenuFont = Tahoma, 8
  52. StatusFont = Tahoma, 8
  53. MsgBoxFont = Tahoma, 8
  54. IconTitleFont = Tahoma, 8
  55.  
  56.  
  57. ;The FlatMenus option allows the author to turn of the 3d border on menus
  58. FlatMenus = true
  59.  
  60. ;This may allow authors to specify a theme matching stylesheet for Webviews, etc.
  61. CssName = cpwebvw.css
  62.  
  63. ;This may allow authors to specify a theme matching XML file.
  64. XmlName = default.xml
  65.  
  66. ; this theme designed for 15-bit color and higher
  67. MinColorDepth = 15
  68.  
  69. ;---------- buttons ---------------------------------
  70. ;Overall button class
  71. [button]
  72.  
  73. ;Normal button
  74. [button.pushbutton]
  75. bgtype = imagefile
  76. SizingMargins = 8, 8, 9, 9
  77. sizingType = Stretch
  78. ContentMargins = 3, 3, 3, 3 
  79. ImageFile = Blue\button.bmp
  80. imageCount = 6
  81. ImageLayout = vertical
  82. TextColor = 0 0 0
  83. FillColorHint = 243 243 239; Average fill color (light beige)
  84. BorderColorHint = 0 60 116; Edge color (dark blue grey)
  85. AccentColorHint = 250 196 88; Rollover hilite color (orange)
  86. MinSize= 10, 5
  87.  
  88. ;Makes text for button grey for the disabled state
  89. [button.pushbutton(disabled)]
  90. TextColor = 161 161 146
  91.  
  92. ;Color hint for default state
  93. [button.pushbutton(defaulted)]
  94. AccentColorHint = 157 187 235; Default state hilite color (blue)
  95.  
  96. ;Checkboxes
  97. [button.checkbox]
  98. bgtype = imagefile
  99. imagelayout=vertical
  100. sizingType = TrueSize
  101. SizingMargins = 0, 0, 0, 0
  102. ContentMargins = 0, 0, 0, 0
  103. imageCount = 12
  104. MirrorImage = false
  105. FillColorHint = 33 161 33; Checkmark color (green)
  106. BorderColorHint = 29 82 129; Edge color (dark blue grey)
  107. AccentColorHint = 250 196 88; Rollover hilite color (orange)
  108.  
  109. ;----- Multiple control sizes for different video adapter resolution settings ----
  110. ImageSelectType = Dpi   ; choose src image by DPI of target DC (vs. theme DPI)
  111. TrueSizeScalingType = Dpi
  112. TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
  113. UniformSizing   = true  ; if you must stretch, do width & height equally
  114. ImageFile1=Blue\CheckBox13.bmp
  115. ImageFile2=Blue\CheckBox16.bmp
  116. ImageFile3=Blue\CheckBox25.bmp
  117. MinDpi1=96
  118. MinDpi2=118
  119. MinDpi3=185 
  120.  
  121. ;Checkboxes can be disabled in various states, so each of the following entries sets the text
  122. ;to grey for the corresponding states.
  123. [button.checkbox(checkeddisabled)]
  124. TextColor = 128 128 128
  125.  
  126. [button.checkbox(uncheckeddisabled)]
  127. TextColor = 128 128 128
  128.  
  129. [button.checkbox(mixeddisabled)]
  130. TextColor = 128 128 128
  131.  
  132. ;Radio buttons
  133. [button.radiobutton]
  134. bgtype = imagefile
  135. imagelayout=vertical
  136. transparent=true
  137. sizingType = TrueSize
  138. SizingMargins = 0, 0, 0, 0
  139. ContentMargins = 0, 0, 0, 0
  140. imageCount = 8
  141. FillColorHint = 33 161 33; Selection dot color (green)
  142. BorderColorHint = 29 82 129; Edge color (dark blue grey)
  143. AccentColorHint = 250 196 88; Rollover hilite color (orange)
  144.  
  145. ;----- Multiple control sizes for different video adapter resolution settings ----
  146. ImageSelectType = Dpi   ; choose src image by DPI of target DC (vs. theme DPI)
  147. TrueSizeScalingType = Dpi
  148. TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
  149. UniformSizing   = true  ; if you must stretch, do width & height equally
  150. ImageFile1=Blue\RadioButton13.bmp
  151. ImageFile2=Blue\RadioButton16.bmp
  152. ImageFile3=Blue\RadioButton25.bmp
  153. MinDpi1=96
  154. MinDpi2=118
  155. MinDpi3=185
  156.  
  157. ;Radio buttons can be disabled in various states, so each of the following entries sets the text
  158. ;to grey for the corresponding states.
  159. [button.radiobutton(checkeddisabled)]
  160. TextColor = 128 128 128
  161.  
  162. [button.radiobutton(uncheckeddisabled)]
  163. TextColor = 128 128 128
  164.  
  165. ;The line enclosing a group of controls
  166. [button.groupbox]
  167. TextColor = 0 0 0
  168. bgtype = imagefile
  169. SizingMargins = 4, 4, 4, 4
  170. sizingType = Tile
  171. ImageFile = Blue\GroupBox.bmp
  172. ;BorderOnly means that the area inside the sizing margins is not drawn (so it won't
  173. ;draw on top of the controls it surrounds)
  174. borderOnly = true
  175. transparent = true
  176. BorderColorHint = 160 160 160; Dark beige edge color
  177. NormalSize = 9999, 9999   ; never source size a groupbox (from IE)
  178.  
  179.  
  180. ;----------- combobox --------------------------------
  181. ;Dropdown controls
  182.  
  183. [Combobox]
  184. BgType = ImageFile
  185. BorderSize = 0
  186. ImageFile = Blue\ComboBox.bmp
  187. SizingMargins = 1, 1, 1, 1
  188.  
  189. [Combobox(Disabled)]
  190. FillColor = 240 240 240
  191. TextColor = 180 180 180
  192. ImageFile = Blue\ComboBoxDisabled.bmp
  193.  
  194. ;The down pointing triangle button
  195. [Combobox.DropDownButton]
  196. BgType  = imagefile
  197. imagelayout = vertical
  198. SizingType  = Stretch
  199. ImageFile = Blue\ComboButton.bmp
  200. SizingMargins = 2, 2, 5, 5
  201. ContentMargins = 0, 0, 1, 0
  202. ImageCount  = 4
  203. GlyphType   = ImageGlyph
  204. GlyphImageFile = Blue\ComboButtonGlyph.bmp
  205. GlyphTransparent= true
  206. FillColorHint = 200 214 251; Average fill color (light blue)
  207. BorderColorHint = 255 255 255; Edge color (white)
  208.  
  209. ;----------- edit --------------------------------
  210. [edit]
  211. BgType  = BorderFill
  212. BorderSize  = 1
  213. FillColor   = 255 255 255 
  214. BorderColor = 130 135 144
  215.  
  216. [edit.edittext(Disabled)]
  217. FillColor   = 235 235 228
  218. TextColor   = 161 161 146
  219.  
  220. [edit.edittext(ReadOnly)]
  221. FillColor   = 235 235 228
  222. TextColor   = 0 0 0
  223.  
  224.  
  225. ;----------- listbox --------------------------------
  226. [Listbox]
  227. BgType  = BorderFill
  228. BorderSize  = 1
  229. FillColor   = 255 255 255 
  230. BorderColor = 130 135 144
  231.  
  232.  
  233. ;--------- Scrollbar -------------------------
  234. [ScrollBar]
  235.  
  236. ;The buttons, both horizontal and vertical in one strip
  237. ; Scrollbar Arrow Buttons
  238. [ScrollBar.ArrowBtn]
  239. BgType  = ImageFile
  240. SizingMargins = 5, 5, 5, 5
  241. ContentMargins = 0, 0, 3, 3
  242. SizingType = Stretch
  243. ImageFile = Blue\ScrollArrows.bmp
  244. ImageCount = 20
  245. ImageLayout = Vertical
  246. GlyphType   = ImageGlyph
  247. GlyphTransparent= True
  248. FillColorHint = 200 214 251; Average fill color (light blue)
  249. BorderColorHint = 255 255 255; Edge color (white)
  250.  
  251.  
  252. ;----- the two sizes of scrollbar arrow glyphs ----
  253. ImageSelectType = size   ; choose src image by DPI of target DC (vs. theme DPI)
  254. ;TrueSizeScalingType = size
  255. ;SourceShrink = True
  256. ;TrueSizeStretchMark = 150; start stretching when target exceeds source size by 150%
  257. ;UniformSizing   = true; if you must stretch, do width & height equally
  258. ImageFile1  = Blue\ScrollArrowGlyphsSmall.bmp
  259. ;ImageFile2  = Blue\ScrollArrowGlyphsSmall.bmp
  260. ;MinSize1  = 7, 7
  261. ;MinSize2  = 9, 9 
  262. ;NormalSize = 7, 10
  263.  
  264. ; Scrollbar Thumb (horizontal)
  265. [Scrollbar.ThumbBtnHorz]
  266. BgType  = ImageFile
  267. SizingMargins = 5, 5, 5, 5
  268. ContentMargins = 4, 4, 0, 0
  269. ImageFile = Blue\ScrollThumbHorizontal.bmp
  270. ImageCount  = 5
  271. ImageLayout = Vertical
  272. FillColorHint = 198 213 253; Average fill color (light blue)
  273. BorderColorHint = 255 255 255; Edge color (white)
  274.  
  275.  
  276. ;A visual element in the middle of the scrollbar thumb
  277. [Scrollbar.GripperHorz]
  278. BgType  = ImageFile
  279. SizingType  = TrueSize
  280. ImageFile = Blue\ScrollThumbGripperHorizontal.BMP
  281. imagelayout = vertical
  282. Transparent = True
  283. ImageCount  = 5
  284.  
  285. ; Scrollbar Thumb (vertical)
  286. [Scrollbar.ThumbBtnVert]
  287. BgType  = ImageFile
  288. SizingMargins = 5, 5, 5, 5
  289. ContentMargins = 0, 0, 4, 4
  290. ImageFile = Blue\ScrollThumbVertical.bmp
  291. ImageCount  = 5
  292. ImageLayout = vertical
  293. FillColorHint = 198 213 253; Average fill color (light blue)
  294. BorderColorHint = 255 255 255; Edge color (white)
  295.  
  296. ;A visual element in the middle of the scrollbar thumb
  297. [Scrollbar.GripperVert]
  298. BgType  = ImageFile
  299. SizingType  = TrueSize
  300. ImageFile = Blue\ScrollThumbGripperVertical.BMP
  301. ImageCount  = 5
  302. Transparent = True
  303. ImageLayout = Vertical
  304.  
  305.  
  306. ; Scrollbar Tracks (horizontal)
  307. [Scrollbar.LowerTrackHorz]
  308. BgType  = imagefile
  309. ImageFile = Blue\ScrollShaftHorizontal.bmp
  310. SizingMargins = 0, 0, 1, 1
  311. ImageCount = 5
  312. ImageLayout = Vertical
  313. FillColorHint = 198 213 253; Average fill color (light blue)
  314.  
  315.  
  316. [Scrollbar.UpperTrackHorz]
  317. BgType  = imagefile
  318. ImageFile = Blue\ScrollShaftHorizontal.bmp
  319. SizingMargins = 0, 0, 1, 1
  320. ImageCount = 5
  321. ImageLayout = Vertical
  322. FillColorHint = 198 213 253; Average fill color (light blue)
  323.  
  324. ; Scrollbar Tracks (vertical)
  325. [Scrollbar.LowerTrackVert]
  326. BgType  = imagefile
  327. ImageFile = Blue\ScrollShaftVertical.bmp
  328. SizingMargins = 1, 1, 0, 0
  329. ImageCount = 5
  330. ImageLayout = Vertical
  331. FillColorHint = 198 213 253; Average fill color (light blue)
  332.  
  333. [Scrollbar.UpperTrackVert]
  334. BgType  = imagefile
  335. ImageFile = Blue\ScrollShaftVertical.bmp
  336. SizingMargins = 1, 1, 0, 0
  337. ImageCount = 5
  338. ImageLayout = Vertical
  339. FillColorHint = 198 213 253; Average fill color (light blue)
  340.  
  341. [ScrollBar.SizeBox]
  342. ImageFile = Blue\ResizeGrip2.bmp
  343. bgtype = imagefile
  344. imageCount = 2
  345. sizingType = trueSize
  346. Transparent = True
  347. TransparentColor = 255 0 0
  348. FillColorHint = 184 180 163; Gripper dot color (dark beige)
  349. VAlign = Bottom
  350.  
  351. ;----------- spin --------------------------------
  352. ;Spin buttons for incrementing values in a field
  353. [Spin]
  354. ;Bgtype = imagefile
  355. ;SizingType = tile
  356. ;ImageFile = Blue\FieldOutlineBlue.bmp
  357. ;SizingMargins = 2, 2, 2, 2
  358. ;ImageCount = 1
  359.  
  360. [Spin.Up]
  361. Bgtype = imagefile
  362. SizingType = stretch
  363. ImageFile = Blue\SpinButtonBackgroundUp.bmp
  364. SizingMargins = 3, 3, 3, 2
  365. ContentMargins = 3, 2, 2, 1
  366. ImageCount = 4
  367. ImageLayout = Vertical
  368. GlyphType = ImageGlyph
  369. GlyphImageFile = Blue\SpinUpGlyph.bmp
  370. GlyphTransparent = True
  371. FillColorHint = 200 214 251
  372. BorderColorHint = 255 255 255
  373. TRANSPARENT = true
  374. TRANSPARENTCOLOR = 255 0 255
  375.  
  376. [Spin.Down]
  377. Bgtype = imagefile
  378. SizingType = tile
  379. ImageFile = Blue\SpinButtonBackgroundDown.bmp
  380. SizingMargins = 2, 3, 2, 3
  381. ContentMargins = 3, 2, 1, 2
  382. ImageCount = 4
  383. ImageLayout = Vertical
  384. GlyphType = ImageGlyph
  385. GlyphImageFile = Blue\SpinDownGlyph.bmp
  386. GlyphTransparent = True
  387. FillColorHint = 200 214 251
  388. BorderColorHint = 255 255 255
  389. TRANSPARENT = true
  390. TRANSPARENTCOLOR = 255 0 255
  391.  
  392. [Spin.Uphorz]
  393. Bgtype = imagefile
  394. SizingType = stretch
  395. ImageFile = Blue\SpinButtonBackgroundRight.bmp
  396. SizingMargins = 2, 3, 0, 0
  397. ContentMargins = 0, 0, 0, 0
  398. ImageCount = 4
  399. ImageLayout = Vertical
  400. GlyphType = ImageGlyph
  401. GlyphImageFile = Blue\SpinRightGlyph.bmp
  402. GlyphTransparent = True
  403. FillColorHint = 200 214 251
  404. BorderColorHint = 255 255 255
  405. TRANSPARENT = true
  406. TRANSPARENTCOLOR = 255 0 255
  407.  
  408. [Spin.Downhorz]
  409. Bgtype = imagefile
  410. SizingType = Stretch
  411. ImageFile = Blue\SpinButtonBackgroundLeft.bmp
  412. SizingMargins = 3, 2, 0, 0
  413. ContentMargins = 0, 0, 0, 0
  414. ImageCount = 4
  415. ImageLayout = Vertical
  416. GlyphType = ImageGlyph
  417. GlyphImageFile = Blue\SpinLeftGlyph.bmp
  418. GlyphTransparent = True
  419. FillColorHint = 200 214 251
  420. BorderColorHint = 255 255 255
  421. TRANSPARENT = true
  422. TRANSPARENTCOLOR = 255 0 255
  423.  
  424.  
  425. ;----------- rebar --------------------------------
  426. ;Rebar is a container for toolbars
  427.  
  428. [Rebar]
  429. bgtype =imagefile
  430. sizingtype=stretch
  431. ImageFile = Blue\ToolbarBackground.bmp
  432. sizingmargins= 0, 0, 0, 4
  433. Font                = Tahoma, 8
  434. TextColor           = 127 124 115
  435. FillColorHint = 241 243 239; Background color of toolbars (light beige)
  436.  
  437. [Rebar.Band]
  438. bgtype = none
  439. ContentMargins    = 2, 0, 0, 0
  440. EdgeShadowColor = 216 210 189
  441.  
  442. [Rebar.Gripper]
  443. bgtype = imagefile
  444. SizingMargins   = 2, 1, 4, 2 
  445. ContentMargins    = 2, 1, 0, 0
  446. ImageFile = Blue\ToolbarGripper.bmp
  447. sizingType     = Tile
  448. Transparent     = true
  449. FillColorHint = 171 167 149; Gripper dot color (dark beige)
  450.  
  451. [Rebar.GripperVert]
  452. bgtype = imagefile
  453. SizingMargins = 3, 3, 2, 1
  454. ContentMargins    = 1, 2, 0, 0
  455. ImageFile = Blue\ToolbarGripperVert.bmp
  456. sizingType = Tile
  457. Transparent = true
  458. FillColorHint = 171 167 149; Gripper dot color (dark beige)
  459.  
  460. [Rebar.Chevron]
  461. SizingMargins = 4, 4, 4, 4
  462. ContentMargins = 0, 0, 0, 0
  463. ImageFile = Blue\ToolbarButtons.bmp
  464. bgtype = imagefile
  465. imagelayout = vertical
  466. imageCount= 6
  467. sizingType= Stretch
  468. Transparent = true
  469. GlyphType   = ImageGlyph
  470. GlyphImageFile = Blue\Chevron.bmp
  471. GlyphTransparent= true
  472. VAlign = Top
  473. FillColorHint = 0 0 0; Glyph color (black)
  474.  
  475. [Rebar.ChevronVert]
  476. SizingMargins = 4, 4, 4, 4
  477. ContentMargins = 0, 0, 0, 0
  478. ImageFile = Blue\ToolbarButtons.bmp
  479. bgtype = imagefile
  480. imagelayout = vertical
  481. imageCount= 6
  482. sizingType= Stretch
  483. Transparent = true
  484. GlyphType   = ImageGlyph
  485. GlyphImageFile = Blue\Chevron.bmp
  486. GlyphTransparent= true
  487. VAlign = Top
  488. FillColorHint = 0 0 0; Glyph color (black)
  489.  
  490. ;----------- toolbar--------------------------------
  491. ;Button bars and menu bars in some applicatons
  492.  
  493. [Toolbar]
  494. BgType  = Borderfill
  495. Bordersize  = 0
  496. FillColor   = 236 233 216
  497. TextColor   = 0 0 0
  498.  
  499. [Toolbar(Pressed)]
  500. TextColor= 255 255 255
  501.  
  502. [Toolbar.Button]
  503. SizingMargins = 4, 4, 4, 4
  504. ContentMargins = 0, 0, 0, 0
  505. ImageFile = Blue\ToolbarButtons.bmp
  506. bgtype = imagefile
  507. imagelayout = vertical
  508. imageCount = 6
  509. sizingType = Stretch
  510. Transparent = true
  511. TransparentColor = 255 0 255
  512. FillColorHint = 241 243 239; Average fill color (light beige)
  513. BorderColorHint = 206 206 195; Edge color (dark beige)
  514.  
  515. [Toolbar.Separator]
  516. SizingMargins = 5, 2, 2, 1
  517. ImageFile = Blue\Separator.bmp
  518. bgtype = imagefile
  519. imageCount = 1
  520. sizingType = tile
  521. Transparent = true
  522. TransparentColor = 255 0 0
  523. FillColorHint = 202 198 175; Darker separator color (medium beige)
  524.  
  525. [Toolbar.SeparatorVert]
  526. SizingMargins = 2, 1, 5, 1
  527. ImageFile = Blue\SeparatorVert.bmp
  528. bgtype = imagefile
  529. imageCount = 1
  530. sizingType = tile
  531. Transparent = true
  532. TransparentColor = 255 0 0
  533. FillColorHint = 202 198 175; Darker separator color (medium beige)
  534.  
  535.  
  536. [Toolbar.DropdownButton]
  537. SizingMargins = 4, 4, 4, 4
  538. ContentMargins = 0, 0, 0, 0
  539. ImageFile = Blue\ToolbarButtons.bmp
  540. bgtype = imagefile
  541. imagelayout = vertical
  542. imageCount = 6
  543. sizingType = Stretch
  544. Transparent = true
  545. TransparentColor = 255 0 255
  546. FillColorHint = 241 243 239; Average fill color (light beige)
  547. BorderColorHint = 206 206 195; Edge color (dark beige)
  548.  
  549. [Toolbar.SplitButton]
  550. SizingMargins = 4, 2, 4, 4
  551. ImageFile = Blue\ToolbarButtonsSplit.bmp
  552. bgtype = imagefile
  553. imagelayout = vertical
  554. imageCount = 6
  555. sizingType = Stretch
  556. Transparent = true
  557. TransparentColor = 255 0 255
  558. FillColorHint = 241 243 239; Average fill color (light beige)
  559. BorderColorHint = 206 206 195; Edge color (dark beige)
  560.  
  561. [Toolbar.SplitButtonDropdown]
  562. SizingMargins = 2, 4, 4, 4
  563. ImageFile = Blue\ToolbarButtonsSplitDropdown.bmp
  564. bgtype = imagefile
  565. imagelayout = vertical
  566. imageCount = 6
  567. sizingType = Stretch
  568. Transparent = true
  569. TransparentColor = 255 0 255
  570. GlyphType   = ImageGlyph
  571. GlyphImageFile = Blue\ToolbarButtonsSplitDropdownGlyph.bmp
  572. GlyphTransparent= true
  573. FillColorHint = 241 243 239; Average fill color (light beige)
  574. BorderColorHint = 206 206 195; Edge color (dark beige)
  575.  
  576.  
  577. ;----------- status--------------------------------
  578. ;The area at the bottom of a window containing miscellaneous status info
  579. ;The first is the container for the status sections
  580. [Status]
  581. SizingMargins = 50, 17, 5, 9
  582. ImageFile = Blue\StatusBackground.bmp
  583. bgtype = imagefile
  584. imageCount = 1
  585. sizingType = Tile
  586. FillColorHint = 236 233 216; Average fill color (beige)
  587.  
  588. ;The individual status item backgrounds
  589. [Status.Pane]
  590. SizingMargins = 0, 2, 2, 2
  591. ImageFile = Blue\StatusPane.bmp
  592. bgtype = imagefile
  593. imageCount = 1
  594. sizingType = Tile
  595. Transparent = True
  596. TransparentColor = 255 0 0 
  597.  
  598. ;The individual status item backgrounds
  599. [Status.GripperPane]
  600. bgtype = none
  601.  
  602. ;The resize corner
  603. [Status.Gripper]
  604. ContentMargins=0,0,0,0
  605. ImageFile = Blue\ResizeGrip2.bmp
  606. bgtype = imagefile
  607. imageCount = 2
  608. sizingType = trueSize
  609. Transparent = True
  610. TransparentColor = 255 0 0 
  611. FillColorHint = 184 180 163; Resize gripper dots (dark beige)
  612. VAlign = Bottom
  613.  
  614.  
  615. ;----------- list view --------------------------------
  616. ;Icon, list, details, etc.
  617.  
  618. [ListView]
  619. BgType  = BorderFill
  620. BorderSize  = 1
  621. FillColor   = 255 255 255 
  622. BorderColor = 130 135 144
  623.  
  624.  
  625. ;----------- Tree view --------------------------------
  626.  
  627. [TreeView]
  628. BgType  = BorderFill
  629. BorderSize  = 1
  630. FillColor   = 255 255 255 
  631. BorderColor = 130 135 144
  632.  
  633. [TreeView.Glyph]
  634. bgtype = imagefile
  635. SizingType = TrueSize
  636. imagecount = 2
  637. imageLayout=vertical
  638. ;----- Multiple control sizes for different video adapter resolution settings ----
  639. ImageSelectType = Dpi   ; choose src image by DPI of target DC (vs. theme DPI)
  640. TrueSizeScalingType = Dpi
  641. TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
  642. UniformSizing   = true  ; if you must stretch, do width & height equally
  643. ImageFile1=Blue\treeExpandCollapse.bmp
  644. ImageFile2=Blue\treeExpandCollapse10.bmp
  645. ImageFile3=Blue\treeExpandCollapse15.bmp
  646. MinDpi1=96
  647. MinDpi2=133
  648. MinDpi3=150 
  649.  
  650.  
  651. ;----------- header --------------------------------
  652. ;The area at the top of a list, with clickable headers for sort order
  653.  
  654. [Header]
  655. bgtype = imagefile
  656. SizingMargins = 2, 2, 9, 14
  657. ImageFile = Blue\ListviewHeaderBackground.bmp
  658. sizingType = tile
  659.  
  660. [Header.HeaderItem]
  661. bgtype = imagefile
  662. SizingMargins = 2, 3, 9, 14
  663. ContentMargins = 0, 0, 0, 0
  664. ImageFile = Blue\ListViewHeader.bmp
  665. imageCount=5
  666. imageLayout=vertical
  667. sizingType = Stretch
  668. transparent=true
  669. transparentcolor=255 0 0
  670. FillColorHint = 250 248 243; Average fill color (light beige)
  671. AccentColorHint = 252 194 71; Rollover hilite color (orange)
  672.  
  673.  
  674. ;----------- progress --------------------------------
  675. ;Progress bars
  676.  
  677. [Progress]
  678. ProgressChunkSize=10
  679. ProgressSpaceSize=0
  680. bgType = borderFill
  681. fillType = Solid
  682. fillColor = 46 211 49
  683. bordersize = 2
  684. borderColor = 235 235 228
  685.  
  686. [Progress.Bar]
  687. Bgtype = ImageFile
  688. ImageFile = Blue\ProgressTrack.bmp
  689. MinSize = 10, 10
  690. SizingMargins = 9, 9, 7, 6
  691. ContentMargins = 1, 1, 1, 1
  692. SizingType = Stretch
  693. FillColorHint = 255 255 255
  694. BorderColorHint = 104 104 104
  695.  
  696. [Progress.Chunk]
  697. Bgtype = imagefile
  698. ImageFile = Blue\ProgressChunk.bmp
  699. MinSize = 8, 8
  700. SizingMargins = 0, 0, 6, 5
  701. SizingType = Stretch
  702. FillColorHint = 46 211 49
  703.  
  704. [Progress.BarVert]
  705. Bgtype = imagefile
  706. ImageFile = Blue\ProgressTrackVert.bmp
  707. SizingMargins = 7, 6, 9, 9
  708. ContentMargins = 1, 1, 1, 1
  709. SizingType = Stretch
  710. FillColorHint = 255 255 255
  711. BorderColorHint = 104 104 104
  712.  
  713. [Progress.ChunkVert]
  714. Bgtype = imagefile
  715. ImageFile = Blue\ProgressChunkVert.bmp
  716. SizingMargins = 6, 5, 0, 0
  717. SizingType = Stretch
  718. FillColorHint = 46 211 49
  719.  
  720.  
  721. ;----------- tab --------------------------------
  722. [Tab]
  723. bgType = borderFill
  724. fillType = Solid
  725. fillColor = 236 233 216
  726. bordersize = 0
  727.  
  728. ;The whole content area of a tab page
  729. [Tab.Pane]
  730. bgtype = imagefile
  731. ImageFile = Blue\TabPaneEdge.bmp
  732. sizingMargins = 1, 3, 1, 2
  733. SizingType = stretch
  734. imagecount = 1
  735. FillColorHint = 251 251 253; Light tab background color (very light beige)
  736. BorderColorHint = 145 155 156; Edge color (dark grey)
  737.  
  738. [Tab.TabItem]
  739. SizingMargins = 2, 2, 2, 2
  740. ContentMargins = 0, 0, 0, 0
  741. bgtype=imagefile
  742. ImageFile = Blue\tabItem.bmp
  743. imagecount=5
  744. imagelayout=vertical
  745. FillColorHint = 248 248 246; Tab average color (light beige)
  746. BorderColorHint = 145 167 180; Edge color (blue grey)
  747. AccentColorHint = 255 200 60; Rollover hilite color (orange)
  748.  
  749.  
  750. [Tab.TabItemLeftEdge]
  751. SizingMargins = 2, 2, 2, 2
  752. ContentMargins = 0, 0, 0, 0
  753. bgtype=imagefile
  754. ImageFile = Blue\tabItemLeft.bmp
  755. imagecount=5
  756. imagelayout=vertical
  757. FillColorHint = 248 248 246; Tab average color (light beige)
  758. BorderColorHint = 145 167 180; Edge color (blue grey)
  759. AccentColorHint = 255 200 60; Rollover hilite color (orange)
  760.  
  761.  
  762. [Tab.TabItemRightEdge]
  763. SizingMargins = 2, 2, 2, 2
  764. ContentMargins = 0, 0, 0, 0
  765. bgtype=imagefile
  766. ImageFile = Blue\tabItemRight.bmp
  767. imagecount=5
  768. imagelayout=vertical
  769. FillColorHint = 248 248 246; Tab average color (light beige)
  770. BorderColorHint = 145 167 180; Edge color (blue grey)
  771. AccentColorHint = 255 200 60; Rollover hilite color (orange)
  772.  
  773.  
  774. [Tab.TabItemBothEdge]
  775. SizingMargins = 2, 2, 2, 2
  776. ContentMargins = 0, 0, 0, 0
  777. bgtype=imagefile
  778. ImageFile = Blue\tabItemBoth.bmp
  779. imagecount=5
  780. imagelayout=vertical
  781. FillColorHint = 248 248 246; Tab average color (light beige)
  782. BorderColorHint = 145 167 180; Edge color (blue grey)
  783. AccentColorHint = 255 200 60; Rollover hilite color (orange)
  784.  
  785.  
  786. [Tab.TopTabItem]
  787. SizingMargins = 2, 2, 2, 2
  788. ContentMargins = 0, 0, 0, 0
  789. bgtype=imagefile
  790. ImageFile = Blue\tabItemTop.bmp
  791. imagecount=5
  792. imagelayout=vertical
  793. FillColorHint = 248 248 246; Tab average color (light beige)
  794. BorderColorHint = 145 167 180; Edge color (blue grey)
  795. AccentColorHint = 255 200 60; Rollover hilite color (orange)
  796.  
  797.  
  798. [Tab.TopTabItemLeftEdge]
  799. SizingMargins = 2, 2, 2, 2
  800. ContentMargins = 0, 0, 0, 0
  801. bgtype=imagefile
  802. ImageFile = Blue\tabItemTopLeft.bmp
  803. imagecount=5
  804. imagelayout=vertical
  805. FillColorHint = 248 248 246; Tab average color (light beige)
  806. BorderColorHint = 145 167 180; Edge color (blue grey)
  807. AccentColorHint = 255 200 60; Rollover hilite color (orange)
  808.  
  809.  
  810. [Tab.TopTabItemRightEdge]
  811. SizingMargins = 2, 2, 2, 2
  812. ContentMargins = 0, 0, 0, 0
  813. bgtype=imagefile
  814. ImageFile = Blue\tabItemTopRight.bmp
  815. imagecount=5
  816. imagelayout=vertical
  817. FillColorHint = 248 248 246; Tab average color (light beige)
  818. BorderColorHint = 145 167 180; Edge color (blue grey)
  819. AccentColorHint = 255 200 60; Rollover hilite color (orange)
  820.  
  821.  
  822. [Tab.TopTabItemBothEdge]
  823. SizingMargins = 2, 2, 2, 2
  824. ContentMargins = 0, 0, 0, 0
  825. bgtype=imagefile
  826. ImageFile = Blue\tabItemTopBoth.bmp
  827. imagecount=5
  828. imagelayout=vertical
  829. FillColorHint = 248 248 246; Tab average color (light beige)
  830. BorderColorHint = 145 167 180; Edge color (blue grey)
  831. AccentColorHint = 255 200 60; Rollover hilite color (orange)
  832.  
  833.  
  834. [Tab.Body]
  835. bgtype = imagefile
  836. stockImageFile = Blue\TabBackground.bmp
  837. FillColorHint = 251 251 253; Light tab background color (very light beige)
  838.  
  839. ImageSelectType = Dpi   ; choose src image by DPI of target DC (vs. theme DPI)
  840. TrueSizeScalingType = Dpi
  841. TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
  842. ImageFile1=Blue\TabBackground.bmp
  843. ImageFile2=Blue\TabBackground133.bmp
  844. MinDpi1=96
  845. MinDpi2=164
  846.  
  847. ;----------- trackbar --------------------------------
  848. ;Volume sliders, etc.
  849. [TrackBar]
  850. bgType = borderFill
  851. fillType = Solid
  852. fillColor = 235 235 228
  853. bordersize = 1
  854. borderColor = 235 235 228
  855.  
  856. ;The movable part of a horizontal slider (TBS_BOTH style)
  857. [TrackBar.Thumb]
  858. bgtype=imagefile
  859. ImageFile = Blue\TrackbarHorizontal.bmp
  860. imagecount=5
  861. imagelayout = vertical
  862. SizingMargins = 2, 3, 3, 4
  863. sizingtype = stretch
  864. FillColorHint = 243 243 239; Average background color (light beige)
  865. BorderColorHint = 181 196 205; Edge color (blue grey)
  866. AccentColorHint = 71 196 70; Rollover color (green)
  867.  
  868. ;The movable part of a horizontal slider (TBS_TOP style)
  869. [TrackBar.ThumbTop]
  870. bgtype=imagefile
  871. imagecount=5
  872. imagelayout = vertical
  873. transparent=true
  874. sizingtype = truesize
  875. transparentcolor= 242 241 231
  876. FillColorHint = 243 243 239; Average background color (light beige)
  877. BorderColorHint = 181 196 205; Edge color (blue grey)
  878. AccentColorHint = 71 196 70; Rollover color (green)
  879.  
  880.  
  881. ;----- the three sizes ----
  882. ImageSelectType = Dpi   ; choose src image by DPI of target DC (vs. theme DPI)
  883. TrueSizeScalingType = Dpi
  884. TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
  885. UniformSizing   = true  ; if you must stretch, do width & height equally
  886. ImageFile1=Blue\TrackBarUp13.bmp
  887. ImageFile2=Blue\TrackBarUp16.bmp
  888. ImageFile3=Blue\TrackBarUp25.bmp
  889. MinDpi1=96
  890. MinDpi2=118
  891. MinDpi3=185
  892.  
  893.  
  894. ;The movable part of a horizontal slider (TBS_BOTTOM style)
  895. [TrackBar.ThumbBottom]
  896. bgtype=imagefile
  897. imagecount=5
  898. transparent=true
  899. SizingMargins = 3, 6, 6, 10
  900. sizingtype = truesize
  901. transparentcolor= 242 241 231
  902. ImageLayout = vertical
  903. FillColorHint = 243 243 239; Average background color (light beige)
  904. BorderColorHint = 181 196 205; Edge color (blue grey)
  905. AccentColorHint = 71 196 70; Rollover color (green)
  906.  
  907.  
  908. ;----- the three sizes ----
  909. ImageSelectType = Dpi   ; choose src image by DPI of target DC (vs. theme DPI)
  910. TrueSizeScalingType = Dpi
  911. TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
  912. UniformSizing   = true  ; if you must stretch, do width & height equally
  913. ImageFile1=Blue\TrackBarDown13.bmp
  914. ImageFile2=Blue\TrackBarDown16.bmp
  915. ImageFile3=Blue\TrackBarDown25.bmp
  916. MinDpi1=96
  917. MinDpi2=118
  918. MinDpi3=185
  919.  
  920. ;The movable part of a vertical slider (TBS_BOTH style)
  921. [TrackBar.ThumbVert]
  922. bgtype=imagefile
  923. ImageFile = Blue\TrackbarVertical.bmp
  924. SizingMargins = 2, 3, 2, 3
  925. sizingtype = stretch
  926. imagecount=5
  927. ImageLayout = vertical
  928. FillColorHint = 243 243 239; Average background color (light beige)
  929. BorderColorHint = 181 196 205; Edge color (blue grey)
  930. AccentColorHint = 71 196 70; Rollover color (green)
  931.  
  932.  
  933. ;The movable part of a vertical slider (TBS_LEFT style)
  934. [TrackBar.ThumbLeft]
  935. bgtype=imagefile
  936. sizingtype = truesize
  937. imagecount=5
  938. transparent=true
  939. transparentcolor= 242 241 231
  940. ImageLayout = vertical
  941. FillColorHint = 243 243 239; Average background color (light beige)
  942. BorderColorHint = 181 196 205; Edge color (blue grey)
  943. AccentColorHint = 71 196 70; Rollover color (green)
  944.  
  945. ;----- the three sizes ----
  946. ImageSelectType = Dpi   ; choose src image by DPI of target DC (vs. theme DPI)
  947. TrueSizeScalingType = Dpi
  948. TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
  949. UniformSizing   = true  ; if you must stretch, do width & height equally
  950. ImageFile1=Blue\TrackBarLeft13.bmp
  951. ImageFile2=Blue\TrackBarLeft16.bmp
  952. ImageFile3=Blue\TrackBarLeft25.bmp
  953. MinDpi1=96
  954. MinDpi2=118
  955. MinDpi3=185
  956.  
  957. ;The movable part of a vertical slider (TBS_RIGHT style)
  958. [TrackBar.ThumbRight]
  959. bgtype=imagefile
  960. ImageFile = Blue\TrackbarRight13.bmp
  961. sizingtype = truesize
  962. imagecount=5
  963. transparent=true
  964. transparentcolor= 242 241 231
  965. ImageLayout = vertical
  966. FillColorHint = 243 243 239; Average background color (light beige)
  967. BorderColorHint = 181 196 205; Edge color (blue grey)
  968. AccentColorHint = 71 196 70; Rollover color (green)
  969.  
  970.  
  971. ;----- the three sizes ----
  972. ImageSelectType = Dpi   ; choose src image by DPI of target DC (vs. theme DPI)
  973. TrueSizeScalingType = Dpi
  974. TrueSizeStretchMark = 50; start stretching when target exceeds source size by 50%
  975. UniformSizing   = true  ; if you must stretch, do width & height equally
  976. ImageFile1=Blue\TrackBarRight13.bmp
  977. ImageFile2=Blue\TrackBarRight16.bmp
  978. ImageFile3=Blue\TrackBarRight25.bmp
  979. MinDpi1=96
  980. MinDpi2=118
  981. MinDpi3=185
  982.  
  983. ;The track along which a slidermoves
  984. [TrackBar.Track]
  985. bgtype=imagefile
  986. ImageFile = Blue\sliderTrack.bmp
  987. imagecount=1
  988. sizingtype = stretch
  989. SizingMargins = 2, 2, 2, 2
  990. FillColorHint = 242 241 233
  991. BorderColorHint = 157 156 153
  992.  
  993. ;The vertical track along which a slider moves
  994. [TrackBar.TrackVert]
  995. bgtype=imagefile
  996. ImageFile = Blue\sliderTrack.bmp
  997. imagecount=1
  998. sizingtype = stretch
  999. SizingMargins = 2, 2, 2, 2
  1000. FillColorHint = 242 241 233; Background color (light beige)
  1001. BorderColorHint = 157 156 153; Edge color (dark grey)
  1002.  
  1003. ;Set the color of the tickmarks drawn for the slider
  1004. [TrackBar.Tics]
  1005. color=161 161 146
  1006.  
  1007. ;Set the color of the tickmarks drawn for the vertical slider
  1008. [TrackBar.TicsVert]
  1009. color=161 161 146
  1010.  
  1011.  
  1012.  
  1013.  
  1014. ;----------- tooltip --------------------------------
  1015. ;Set the color or image background for tooltips
  1016. [Tooltip.Close]
  1017. BgType = ImageFile
  1018. ImageFile = Blue\BalloonClose.bmp
  1019. imagecount=3
  1020. sizingtype = truesize
  1021. Imagelayout = vertical
  1022.  
  1023.  
  1024.  
  1025. ;-------------- Windows ------------------------
  1026. [Window]
  1027. BgType = ImageFile
  1028. Transparent = true
  1029.  
  1030. [Window.Caption]
  1031. ImageFile = Blue\FrameCaption.bmp
  1032. SizingMargins = 28, 35, 9, 17
  1033. ContentMargins = 1, 1, 1, 1
  1034. CaptionMargins = 4, 3, 0, 0
  1035. SizingType = stretch
  1036. Imagelayout = vertical
  1037. ImageCount=2
  1038. Transparent = True
  1039. FillColorHint = 0 84 229; Average background color (strong blue)
  1040.  
  1041. [Window.Caption(active)]
  1042. TextShadowType = Single
  1043.  
  1044. [Window.CaptionSizingTemplate]
  1045. ImageFile = Blue\FrameCaptionSizing.bmp
  1046. SizingMargins = 28, 35, 9, 17
  1047. ContentMargins = 18, 18, 26, 0
  1048. SizingType = tile
  1049. Imagelayout = vertical
  1050. ImageCount=2
  1051. Transparent = True
  1052. TransparentColor = 0 0 0
  1053.  
  1054. [Window.SmallCaption]
  1055. ImageFile = Blue\SmallFrameCaption.bmp
  1056. SizingMargins = 2, 2, 2, 0
  1057. ContentMargins = 1, 1, 1, 1
  1058. SizingType = stretch
  1059. Imagelayout = vertical
  1060. ImageCount=2
  1061. FillColorHint = 0 84 229; Average background color (strong blue)
  1062.  
  1063. [Window.SmallCaptionSizingTemplate]
  1064. ImageFile = Blue\SmallFrameCaptionSizing.bmp
  1065. SizingMargins = 24, 37, 9, 8
  1066. ContentMargins = 14, 14, 16, 0
  1067. SizingType = tile
  1068. Imagelayout = vertical
  1069. ImageCount=2
  1070. Transparent = True
  1071. TransparentColor = 0 0 0
  1072.  
  1073. ;The representation of a minimized window in and MDI application
  1074. [Window.MinCaption]
  1075. ImageFile = Blue\FrameCaptionMin.bmp
  1076. ImageCount = 2
  1077. ImageLayout = vertical
  1078. SizingType = stretch
  1079. SizingMargins = 23, 26, 12, 8
  1080. ContentMargins = 3, 3, 0, 3
  1081. CaptionMargins = 4, 3, 0, 0
  1082. FillColorHint = 0 84 229; Average background color (strong blue)
  1083.  
  1084. ;Shows as a strip at the top of a window when an application is maximized, rather than as a frame
  1085. ;surrounding the window
  1086. [Window.MaxCaption]
  1087. ImageFile = Blue\FrameMaximized.bmp
  1088. SizingMargins = 28, 35, 9, 17
  1089. ContentMargins = 1, 1, 1, 1
  1090. SizingType = stretch
  1091. SizingType = Tile
  1092. Imagelayout = vertical
  1093. ImageCount=2
  1094. CaptionMargins = 4, 3, 4, 2 
  1095. ContentAlignment = left
  1096. FillColorHint = 0 84 229; Average background color (strong blue)
  1097.  
  1098. [Window.MaxCaption(Active)]
  1099. TextShadowType = Single
  1100.  
  1101. [Window.FrameLeft]
  1102. ImageFile = Blue\frameLeft.bmp
  1103. SizingMargins = 2, 0, 91, 0
  1104. SizingType = stretch
  1105. ImageLayout = vertical
  1106. ImageCount = 2
  1107. Transparent = FALSE
  1108. Borderonly = FALSE
  1109.  
  1110. [Window.FrameRight]
  1111. ImageFile = Blue\frameRight.bmp
  1112. SizingMargins = 0, 2, 91, 0
  1113. SizingType = stretch
  1114. ImageLayout = vertical
  1115. ImageCount = 2
  1116. Transparent = FALSE
  1117. Borderonly = FALSE
  1118.  
  1119. [Window.FrameBottom]
  1120. ImageFile = Blue\frameBottom.bmp
  1121. SizingMargins = 5, 5, 2, 2
  1122. SizingType = stretch
  1123. ImageLayout = vertical
  1124. ImageCount = 2
  1125. Transparent = FALSE
  1126. Borderonly = FALSE
  1127.  
  1128. [Window.SmallFrameLeft]
  1129. ImageFile = Blue\frameLeft.bmp
  1130. SizingMargins = 2, 0, 91, 0
  1131. SizingType = stretch
  1132. ImageLayout = vertical
  1133. ImageCount = 2
  1134. Transparent = FALSE
  1135. Borderonly = FALSE
  1136.  
  1137. [Window.SmallFrameRight]
  1138. ImageFile = Blue\frameRight.bmp
  1139. SizingMargins = 0, 2, 91, 0
  1140. SizingType = stretch
  1141. ImageLayout = vertical
  1142. ImageCount = 2
  1143. Transparent = FALSE
  1144. Borderonly = FALSE
  1145.  
  1146. [Window.SmallFrameBottom]
  1147. ImageFile = Blue\frameBottom.bmp
  1148. SizingMargins = 5, 5, 2, 2
  1149. SizingType = stretch
  1150. ImageLayout = vertical
  1151. ImageCount = 2
  1152. Transparent = FALSE
  1153. Borderonly = FALSE
  1154.  
  1155.  
  1156. ;Background for dialog boxes
  1157.  
  1158. [Window.dialog]
  1159. bgType = BorderFill
  1160. FillColor = 236 233 216
  1161. BorderColor = 236 233 216
  1162.  
  1163.  
  1164. ;Close button in Window titlebar
  1165. [Window.CloseButton]
  1166. BgType = ImageFile
  1167. SizingMargins = 2, 2, 2, 2
  1168. ContentMargins = 2, 2, 2, 2
  1169. sizingType = Stretch
  1170. ImageFile = Blue\CloseButton.bmp
  1171. GlyphType   = ImageGlyph
  1172. GlyphTransparent = True
  1173. ImageCount = 8
  1174. ImageLayout = Vertical
  1175. OffsetType = TopRight
  1176. Offset = -25, 5
  1177. FillColorHint = 228 93 61; Close box average color (brick red)
  1178. BorderColorHint = 255 255 255; Edge color (white)
  1179.  
  1180. ;----- glyphs ----
  1181. ImageSelectType = size   ; choose src image by DPI of target DC (vs. theme DPI)
  1182. UniformSizing   = true  ; if you must stretch, do width & height equally
  1183. ImageFile1=Blue\CloseGlyph.bmp
  1184. ImageFile2=Blue\CloseGlyph.bmp
  1185. ImageFile3=Blue\CloseGlyph.bmp
  1186. ImageFile4=Blue\CloseGlyph19.bmp
  1187. ImageFile5=Blue\CloseGlyph23.bmp
  1188. MinDpi1=96
  1189. MinDpi2=126
  1190. MinDpi3=170
  1191.  
  1192.  
  1193. ;Maximize button in window titlebar
  1194. [Window.MaxButton]
  1195. BgType = ImageFile
  1196. SizingMargins = 2, 2, 2, 2
  1197. ContentMargins = 2, 2, 2, 2
  1198. sizingType = Stretch
  1199. ImageFile = Blue\CaptionButton.bmp
  1200. GlyphType   = ImageGlyph
  1201. GlyphTransparent = True
  1202. ImageCount = 8
  1203. ImageLayout=Vertical
  1204. OffsetType = TopRight
  1205. Offset = -49, 5
  1206. FillColorHint = 74 121 246; Titlebar button color (blue)
  1207. BorderColorHint = 255 255 255; Edge color (white)
  1208.  
  1209. ;----- glyphs ----
  1210. ImageSelectType = size   ; choose src image by DPI of target DC (vs. theme DPI)
  1211. UniformSizing   = true  ; if you must stretch, do width & height equally
  1212. ImageFile1=Blue\MaximizeGlyph.bmp
  1213. ImageFile2=Blue\MaximizeGlyph.bmp
  1214. ImageFile3=Blue\MaximizeGlyph.bmp
  1215. ImageFile4=Blue\MaximizeGlyph19.bmp
  1216. ImageFile5=Blue\MaximizeGlyph23.bmp
  1217. MinDpi1=96
  1218. MinDpi2=126
  1219. MinDpi3=170
  1220.  
  1221.  
  1222. ;Restore button in window titlebar
  1223. [Window.RestoreButton]
  1224. BgType = ImageFile
  1225. SizingMargins = 2, 2, 2, 2
  1226. ContentMargins = 2, 2, 2, 2
  1227. sizingType = Stretch
  1228. ImageFile = Blue\CaptionButton.bmp
  1229. GlyphType   = ImageGlyph
  1230. GlyphTransparent = True
  1231. ImageCount = 8
  1232. ImageLayout=Vertical
  1233. OffsetType = TopRight
  1234. Offset = -49, 5
  1235. FillColorHint = 74 121 246; Titlebar button color (blue)
  1236. BorderColorHint = 255 255 255; Edge color (white)
  1237.  
  1238. ;----- glyphs ----
  1239. ImageSelectType = size   ; choose src image by DPI of target DC (vs. theme DPI)
  1240. UniformSizing   = true  ; if you must stretch, do width & height equally
  1241. ImageFile1=Blue\RestoreGlyph.bmp
  1242. ImageFile2=Blue\RestoreGlyph.bmp
  1243. ImageFile3=Blue\RestoreGlyph.bmp
  1244. ImageFile4=Blue\RestoreGlyph19.bmp
  1245. ImageFile5=Blue\RestoreGlyph23.bmp
  1246. MinDpi1=96
  1247. MinDpi2=126
  1248. MinDpi3=170
  1249.  
  1250.  
  1251. ;Minimize button in window titlebar
  1252. [Window.MinButton]
  1253. BgType = ImageFile
  1254. SizingMargins = 2, 2, 2, 2
  1255. ContentMargins = 2, 2, 2, 2
  1256. sizingType = Stretch
  1257. ImageFile = Blue\CaptionButton.bmp
  1258. GlyphType   = ImageGlyph
  1259. GlyphTransparent = True
  1260. ImageCount = 8
  1261. ImageLayout=Vertical
  1262. OffsetType = TopRight
  1263. Offset = -73, 5
  1264. FillColorHint = 74 121 246; Titlebar button color (blue)
  1265. BorderColorHint = 255 255 255; Edge color (white)
  1266.  
  1267. ;----- glyphs ----
  1268. ImageSelectType = size   ; choose src image by DPI of target DC (vs. theme DPI)
  1269. UniformSizing   = true  ; if you must stretch, do width & height equally
  1270. ImageFile1=Blue\MinimizeGlyph.bmp
  1271. ImageFile2=Blue\MinimizeGlyph.bmp
  1272. ImageFile3=Blue\MinimizeGlyph.bmp
  1273. ImageFile4=Blue\MinimizeGlyph19.bmp
  1274. ImageFile5=Blue\MinimizeGlyph23.bmp
  1275. MinDpi1=96
  1276. MinDpi2=126
  1277. MinDpi3=170
  1278.  
  1279. ;Help button in window titlebar--normally only appears on dialog windows
  1280. [Window.HelpButton]
  1281. BgType = ImageFile
  1282. SizingMargins = 2, 2, 2, 2
  1283. ContentMargins = 2, 2, 2, 2
  1284. sizingType = Stretch
  1285. ImageFile = Blue\CaptionButton.bmp
  1286. GlyphType   = ImageGlyph
  1287. GlyphTransparent = True
  1288. ImageCount = 8
  1289. ImageLayout=Vertical
  1290. OffsetType = TopRight
  1291. Offset = -73, 5
  1292. MirrorImage = true  ; don't remove this (must specify to be localizable)
  1293. FillColorHint = 74 121 246; Titlebar button color (blue)
  1294. BorderColorHint = 255 255 255; Edge color (white)
  1295.  
  1296. ;----- glyphs ----
  1297. ImageSelectType = size   ; choose src image by DPI of target DC (vs. theme DPI)
  1298. UniformSizing   = true  ; if you must stretch, do width & height equally
  1299. ImageFile1=Blue\HelpGlyph.bmp
  1300. ImageFile2=Blue\HelpGlyph.bmp
  1301. ImageFile3=Blue\HelpGlyph.bmp
  1302. ImageFile4=Blue\HelpGlyph19.bmp
  1303. ImageFile5=Blue\HelpGlyph23.bmp
  1304. MinDpi1=96
  1305. MinDpi2=126
  1306. MinDpi3=170
  1307.  
  1308.  
  1309. ;The Titlebar icon, next to the window title
  1310. [Window.SysButton]
  1311. OffsetType = TopLeft
  1312. Offset = 10, 3
  1313.  
  1314. ;Close button for palette windows
  1315. [Window.SmallCloseButton]
  1316. BgType = ImageFile
  1317. SizingMargins = 5, 5, 5, 5
  1318. ContentMargins = 0, 0, 0, 0
  1319. sizingType = Stretch
  1320. ImageFile = Blue\SmallCloseButton.bmp
  1321. GlyphType   = ImageGlyph
  1322. GlyphImageFile = Blue\SmallCloseGlyph.bmp
  1323. GlyphTransparent = True
  1324. ImageCount = 8
  1325. ImageLayout = Vertical
  1326. OffsetType = TopRight
  1327. Offset = -16, 3
  1328. FillColorHint = 228 93 61; Close box average color (brick red)
  1329. BorderColorHint = 255 255 255; Edge color (white)
  1330.  
  1331. ;Close button for a maximized MDI window
  1332. [Window.MDICloseButton]
  1333. BgType = ImageFile
  1334. sizingType = stretch
  1335. ImageFile = Blue\MDICaptionButton.bmp
  1336. ImageCount=4
  1337. ImageLayout = Vertical
  1338. SizingMargins = 4, 4, 4, 4
  1339. ContentMargins = 0, 0, 0, 0
  1340. OffsetType = TopRight
  1341. Offset = -19, 1
  1342. GlyphType   = ImageGlyph
  1343. GlyphImageFile = Blue\MDIGlyphClose.bmp
  1344. GlyphTransparent= true
  1345. FillColorHint = 241 239 229; Average background color (beige)
  1346. BorderColorHint = 255 255 255; Edge color (white)
  1347.  
  1348. ;Restore button for a maximized MDI window
  1349. [Window.MDIRestoreButton]
  1350. BgType = ImageFile
  1351. sizingType = stretch
  1352. ImageFile = Blue\MDICaptionButton.bmp
  1353. ImageCount=4
  1354. ImageLayout = Vertical
  1355. SizingMargins = 4, 4, 4, 4
  1356. ContentMargins = 0, 0, 0, 0
  1357. OffsetType = TopRight
  1358. Offset = -37, 1
  1359. GlyphType   = ImageGlyph
  1360. GlyphImageFile = Blue\MDIGlyphRestore.bmp
  1361. GlyphTransparent= true
  1362. FillColorHint = 241 239 229; Average background color (beige)
  1363. BorderColorHint = 255 255 255; Edge color (white)
  1364.  
  1365.  
  1366. ;Minimize button for a maximized MDI window
  1367. [Window.MDIMinButton]
  1368. BgType = ImageFile
  1369. sizingType = stretch
  1370. ImageFile = Blue\MDICaptionButton.bmp
  1371. ImageCount=4
  1372. ImageLayout = Vertical
  1373. SizingMargins = 4, 4, 4, 4
  1374. ContentMargins = 0, 0, 0, 0
  1375. OffsetType = TopRight
  1376. Offset = -53, 1
  1377. GlyphType   = ImageGlyph
  1378. GlyphImageFile = Blue\MDIGlyphMinimize.bmp
  1379. GlyphTransparent= true
  1380. FillColorHint = 241 239 229; Average background color (beige)
  1381. BorderColorHint = 255 255 255; Edge color (white)
  1382.  
  1383. ;-------------- Start Panel -------------------
  1384. [StartPanel]
  1385. bgtype = none
  1386. DefaultPaneSize = 0, 0, 380, 440
  1387.  
  1388. [StartPanel.UserPane]
  1389. UserPicture         = True
  1390. ImageLayout         = Horizontal
  1391. TextColor           = 255 255 255
  1392. Font                = Franklin Gothic Medium, 14
  1393. DefaultPaneSize     = 0, 0, 380, 64
  1394. BgType              = Imagefile
  1395. Transparent         = True
  1396. ImageFile = Blue\StartUserPanel.bmp
  1397. Imagecount          = 1
  1398. SizingMargins       = 59, 60, 62, 0
  1399. sizingType          = Stretch
  1400. TEXTSHADOWOFFSET= 2, 2
  1401. textshadowcolor     = 9 66 139
  1402. TextShadowType      = continuous
  1403. FillColorHint = 31 113 216; Average background (blue)
  1404.  
  1405.  
  1406. [StartPanel.UserPicture]
  1407. BgType = ImageFile
  1408. ImageFile = Blue\UserTileBackground.bmp
  1409. Imagecount = 1
  1410. SizingType = Stretch
  1411. SizingMargins = 6, 10, 6, 10
  1412. ContentMargins = 8, 6, 8, 6
  1413. Transparent = true
  1414. FillColorHint = 204 214 235; Average Background (light blue grey)
  1415.  
  1416.  
  1417. [StartPanel.ProgList]
  1418. DefaultPaneSize = 0, 0, 190, 306
  1419. ContentMargins  = 6 4 9 5
  1420. TextColor   = 55 55 56 
  1421. HotTracking = 48 112 208
  1422. CaptionText = 128 128 128
  1423. BgType  = ImageFile
  1424. SizingType  = Stretch
  1425. SizingMargins   = 2, 153, 3, 0
  1426. sizingType = Stretch
  1427. ImageFile = Blue\StartPanelMFUBackground.bmp
  1428. imagecount  = 1
  1429. FillColorHint = 204 214 235; Average Background (light blue grey)
  1430.  
  1431.  
  1432. [StartPanel.ProgListSeparator]
  1433. BgType = ImageFile
  1434. SizingType = TrueSize
  1435. ImageFile = Blue\StartProgramsSeparator.bmp
  1436.  
  1437. [StartPanel.MorePrograms]
  1438. DefaultPaneSize = 0, 0, 190, 30
  1439. TextColor           = 55 55 56
  1440. HotTracking         = 48 112 208
  1441. Font                = Tahoma, 8, Bold
  1442. BgType              = ImageFile
  1443. SizingType          = Stretch
  1444. SizingMargins       = 3, 0, 0, 1
  1445.  
  1446. ;  left and right contentmargins should match proglist
  1447. ContentMargins  = 8, 8, 0, 6
  1448. ImageFile = Blue\StartPanelMoreProgBackGround.BMP
  1449. imagecount  = 1
  1450. sizingType = Stretch
  1451.  
  1452. [StartPanel.MoreProgramsArrow]
  1453. BgType  = ImageFile
  1454. SizingType  = TrueSize
  1455. ImageFile = Blue\StartPanelMoreProgArrow.bmp
  1456. ImageCount  = 1
  1457. FillColorHint = 108 207 108; Average color (green)
  1458.  
  1459. [StartPanel.MoreProgramsArrow(hot)]
  1460. BgType  = ImageFile
  1461. SizingType  = TrueSize
  1462. ImageFile = Blue\StartPanelMoreProgArrowHot.bmp
  1463. ImageCount  = 1
  1464. FillColorHint = 107 239 107; Average color (bright green)
  1465.  
  1466.  
  1467. [StartPanel.PlacesList]
  1468. DefaultPaneSize = 0, 0, 190, 336
  1469. ContentMargins  = 4 6 9 5
  1470. TextColor           = 10 36 106
  1471. HotTracking         = 80 150 248
  1472. BgType              = imageFile
  1473. ImageFile = Blue\StartPanelPlacesBackground.bmp
  1474. imagecount = 1
  1475. SizingMargins = 172, 7, 3, 1
  1476. sizingType = Stretch
  1477. FillColorHint = 211 229 250; Background color (light blue)
  1478.  
  1479. [StartPanel.PlacesListSeparator]
  1480. BgType = ImageFile
  1481. SizingType = TrueSize
  1482. ImageFile = Blue\StartPlacesSeparator.bmp
  1483.  
  1484. [StartPanel.Logoff]
  1485. ContentMargins =  0, 0, 4, 2
  1486. DefaultPaneSize = 0, 0, 380, 40
  1487. TextColor   = 255 255 255
  1488. HotTracking = 255 255 255
  1489. bgType = imagefile
  1490. ImageFile = Blue\StartPanelLogoffBackground.bmp
  1491. imagecount = 1
  1492. sizingMargins = 49, 47, 0, 38
  1493. sizingType = Stretch
  1494. FillColorHint = 37 119 223; Background color (lblue)
  1495.  
  1496. ;; note that if you want transparent LogoffButtons they MUST be 32 bit
  1497. ;; images with an alphachanel, not 8 or 24 bit images with a TransparentColor
  1498. [StartPanel.LogoffButtons]
  1499. BgType  = ImageFile
  1500. Transparent = True
  1501. SizingType  = TrueSize
  1502. ImageFile = Blue\StartPanelLogoffButtons.bmp
  1503. ImageCount  = 1
  1504.  
  1505. [StartPanel.LogoffButtons(hot)]
  1506. BgType  = ImageFile
  1507. Transparent = True
  1508. SizingType  = TrueSize
  1509. ImageFile = Blue\StartPanelLogoffButtonsHot.bmp
  1510. ImageCount  = 1
  1511.  
  1512.  
  1513. ;-------------- Taskbar specific --------------
  1514. [Start::Button]
  1515. BgType  = ImageFile
  1516. SizingType  = Stretch
  1517. SizingMargins   = 6, 52, 13, 14
  1518. ContentMargins  = 10, 24, 2, 4
  1519. ImageFile = Blue\StartButton.bmp
  1520. ImageCount  = 3
  1521. ImageLayout = Vertical
  1522. Transparent = True
  1523. Font= Franklin Gothic Medium, 14, italic
  1524. TextColor   = 255 255 255
  1525. TEXTSHADOWOFFSET= 2, 2
  1526. textshadowcolor = 69 76 16
  1527. TextShadowType  = continuous
  1528. FillColorHint = 74 153 73; Average color (green)
  1529.  
  1530. [StartMenu::MenuBand]
  1531. TextColor   = 0 0 0
  1532.  
  1533. [StartMenu::MenuBand(Hot)]
  1534. TextColor   = 255 255 255
  1535.  
  1536. [StartMenu::MenuBand.NewAppButton]
  1537. BgType  = ImageFile
  1538. SizingType  = Stretch
  1539. SizingMargins   = 6, 1, 0, 0
  1540. ContentMargins  = 10, 0, 3, 0
  1541. ImageFile = Blue\StartGroupNewAppButton.bmp
  1542. ImageCount  = 1
  1543. Transparent    = True
  1544. TransparentColor= 255 0 0
  1545. FillcolorHint = 254 234 182; Background newly installed app color (light orange)
  1546.  
  1547. [StartMenu::MenuBand.Seperator]
  1548. BgType  = ImageFile
  1549. SizingType  = Stretch
  1550. SizingMargins   = 6, 1, 3, 0
  1551. ContentMargins  = 10, 0, 3, 0
  1552. ImageFile = Blue\StartGroupSeperator.bmp
  1553. ImageCount  = 1
  1554. Transparent    = True
  1555. TransparentColor= 255 0 0
  1556. FillColorHint = 211 211 200; Separator color (grey)
  1557.  
  1558. [StartMenu::Toolbar]
  1559. BgType  = ImageFile
  1560. ImageFile = Blue\StartGroupBackground.bmp
  1561. SizingType    = Stretch
  1562. SizingMargins    = 6, 5, 3, 4
  1563. ContentMargins    = 0, 0, 0, 0
  1564. Font= Tahoma, 8
  1565. TextColor   = 0 0 0
  1566. FillColorHint = 255 255 255; Background of More Programs menu (white)
  1567. AccentColorHint = 48 127 229; Left edge of More Programs menu (blue)
  1568.  
  1569.  
  1570. [StartMenu::Toolbar(Hot)]
  1571. TextColor   = 255 255 255
  1572.  
  1573. [StartMenu::Toolbar.Button]
  1574. BgType  = ImageFile
  1575. SizingType  = Stretch
  1576. SizingMargins   = 6, 1, 0, 0
  1577. ContentMargins  = 10, 0, 3, 0
  1578. ImageFile = Blue\StartGroupToolbarButton.bmp
  1579. ImageCount  = 3
  1580. ImageLayout    = vertical
  1581. Transparent    = True
  1582. TransparentColor= 255 0 0
  1583. FillColorHint = 22 101 203; Rollover of item on More Programs menu (blue)
  1584.  
  1585.  
  1586. [TaskBar::Toolbar]
  1587. BgType  = None
  1588. Font= Tahoma, 8
  1589. TextColor   = 255 255 255
  1590.  
  1591. [TaskBar::Toolbar.Button]
  1592. BgType  = ImageFile
  1593. SizingType  = Stretch
  1594. SizingMargins   = 8, 3, 18, 8
  1595. ContentMargins  = 0, 0, 4, 4
  1596. ImageFile = Blue\TaskBandButtonNoEdge.bmp
  1597. ImageCount  = 6
  1598. ImageLayout = vertical
  1599. Transparent = True
  1600. FillColorHint = 53 122 238; Average background color (blue)
  1601.  
  1602. [TaskBar::Toolbar.DropdownButton]
  1603. BgType  = ImageFile
  1604.  
  1605. SizingType  = Stretch
  1606. SizingMargins   = 8, 3, 18, 8
  1607. ContentMargins  = 2, 0, 4, 4
  1608. ImageFile = Blue\TaskBandButtonNoEdge.bmp
  1609. ImageCount  = 6
  1610. ImageLayout = vertical
  1611. Transparent = True
  1612. FillColorHint = 53 122 238; Average background color (blue)
  1613.  
  1614. [TaskBarVert::Toolbar]
  1615. BgType  = None
  1616. Font= Tahoma, 8
  1617. TextColor   = 255 255 255
  1618.  
  1619. [TaskBarVert::Toolbar.Button]
  1620. BgType  = ImageFile
  1621. SizingType  = Stretch
  1622. SizingMargins   = 15, 5, 6, 4
  1623. ContentMargins  = 1, 1, 1, 1
  1624. ImageFile = Blue\TaskBandButtonNoEdgeVertical.bmp
  1625. ImageCount  = 6
  1626. ImageLayout = vertical
  1627. Transparent = True
  1628. FillColorHint = 53 122 238; Average background color (blue)
  1629.  
  1630. [TaskBarVert::Toolbar.DropdownButton]
  1631. BgType  = ImageFile
  1632. SizingType  = Stretch
  1633. SizingMargins   = 15, 5, 6, 4
  1634. ContentMargins  = 1, 1, 1, 1
  1635. ImageFile = Blue\TaskBandButtonNoEdgeVertical.bmp
  1636. ImageCount  = 6
  1637. ImageLayout = vertical
  1638. Transparent = True
  1639. FillColorHint = 53 122 238; ; Average background color (blue)
  1640.  
  1641. [TaskBar::Rebar]
  1642. BgType  = None
  1643. Font= Tahoma, 8
  1644. TextColor   = 123 182 232
  1645.  
  1646. [TaskBar::Rebar.Band]
  1647. BgType  = None
  1648.  
  1649. [TaskBar::Rebar.Gripper]
  1650. BgType  = ImageFile
  1651. SizingType  = Tile
  1652. SizingMargins   = 0, 0, 6, 4
  1653. ContentMargins  = 2, 1, 0, 0
  1654. ImageFile = Blue\TaskbarGripper.bmp
  1655. ImageCount  = 1
  1656. Transparent = True
  1657. TransparentColor= 255 0 255
  1658. FillColorHint = 6 45 159; Gripper dot color (dark purple)
  1659.  
  1660. [TaskBar::Rebar.GripperVert]
  1661. BgType  = ImageFile
  1662. SizingType  = Tile
  1663. SizingMargins   = 4, 6, 0, 0
  1664. ContentMargins  = 0, 0, 2, 1
  1665. ImageFile = Blue\TaskbarGripperVertical.bmp
  1666. ImageCount  = 1
  1667. Transparent = True
  1668. TransparentColor= 255 0 255
  1669. FillColorHint = 6 45 159; Gripper dot color (dark purple)
  1670.  
  1671. [TaskBar::Rebar.Chevron]
  1672. BgType  = ImageFile
  1673. SizingType  = Stretch
  1674. SizingMargins   = 8, 3, 18, 8
  1675. ContentMargins  = 0, 0, 0, 10
  1676. ImageFile = Blue\TaskBandButtonNoEdge.bmp
  1677. ImageCount  = 6
  1678. ImageLayout = vertical
  1679. Transparent = True
  1680. GlyphType   = ImageGlyph
  1681. GlyphImageFile = Blue\TaskbarChevron.bmp
  1682. GlyphTransparent= true
  1683. VAlign = Top
  1684. FillColorHint = 6 45 159; Overflow glyph color (baby blue)
  1685.  
  1686. [TaskBar::Rebar.ChevronVert]
  1687. BgType  = ImageFile
  1688. SizingType  = Stretch
  1689. SizingMargins   = 15, 5, 6, 4
  1690. ContentMargins  = 0, 0, 0, 0
  1691. ImageFile = Blue\TaskBandButtonNoEdgeVertical.bmp
  1692. ImageCount  = 6
  1693. ImageLayout = vertical
  1694. Transparent = True
  1695. GlyphType   = ImageGlyph
  1696. GlyphImageFile = Blue\TaskbarChevronVert.bmp
  1697. GlyphTransparent= true
  1698. FillColorHint = 6 45 159; Overflow glyph color (baby blue)
  1699.  
  1700. [TaskBar.BackgroundBottom]
  1701. BgType  = ImageFile
  1702. SizingType  = Tile
  1703. SizingMargins   = 0, 0, 15, 11
  1704. ImageFile = Blue\TaskbarBackground.bmp
  1705. ImageCount  = 1
  1706. FillColorHint = 36 94 220; Average background color (blue)
  1707.  
  1708. [TaskBar.SizingBarBottom]
  1709. BgType  = ImageFile
  1710. SizingType  = Tile
  1711. ImageFile = Blue\TaskbarSizingBarBottom.bmp
  1712. ImageCount  = 1
  1713. FillColorHint = 50 128 231; Average color (blue)
  1714.  
  1715. [TaskBar.BackgroundLeft]
  1716. BgType  = ImageFile
  1717. SizingType  = Tile
  1718. SizingMargins   = 15, 11, 0, 0
  1719. ImageFile = Blue\TaskbarBackgroundVertical.bmp
  1720. ImageCount  = 1
  1721. FillColorHint = 36 94 220; Average background color (blue)
  1722.  
  1723. [TaskBar.SizingBarLeft]
  1724. BgType  = ImageFile
  1725. SizingType  = Tile
  1726. ImageFile = Blue\TaskbarSizingBarLeft.bmp
  1727. ImageCount  = 1
  1728. FillColorHint = 50 128 231; Average color (blue)
  1729.  
  1730. [TaskBar.BackgroundTop]
  1731. BgType  = ImageFile
  1732. SizingType  = Tile
  1733. SizingMargins   = 0, 0, 15, 11
  1734. ImageFile = Blue\TaskbarBackground.bmp
  1735. ImageCount  = 1
  1736. FillColorHint = 36 94 220; Average background color (blue)
  1737.  
  1738. [TaskBar.SizingBarTop]
  1739. BgType  = ImageFile
  1740. SizingType  = Tile
  1741. ImageFile = Blue\TaskbarSizingBarTop.bmp
  1742. ImageCount  = 1
  1743. FillColorHint = 50 128 231; Average color (blue)
  1744.  
  1745. [TaskBar.BackgroundRight]
  1746. BgType  = ImageFile
  1747. SizingType  = Tile
  1748. SizingMargins   = 11, 13, 0, 0
  1749. ImageFile = Blue\TaskbarBackgroundVertical.bmp
  1750. ImageCount  = 1
  1751. FillColorHint = 36 94 220; Average background color (blue)
  1752.  
  1753. [TaskBar.SizingBarRight]
  1754. BgType  = ImageFile
  1755. SizingType  = Stretch
  1756. ImageFile = Blue\TaskbarSizingBarRight.bmp
  1757. ImageCount  = 1
  1758. FillColorHint = 50 128 231; Average color (blue)
  1759.  
  1760. ;-------------- Taskband specific --------------
  1761. [TaskBand.FlashButton]
  1762. BgType  = ImageFile
  1763. SizingType  = Stretch
  1764. SizingMargins   = 4, 4, 4, 4
  1765. ContentMargins  = 0, 0, 4, 4
  1766. ImageFile = Blue\TaskBandFlashButton.bmp
  1767. ImageCount  = 1
  1768. ImageLayout = vertical
  1769. Transparent = True
  1770. FillColorHint = 56 130 234; Average background color (blue)
  1771. AccentColorHint = 255 192 91; Attention hilite color (orange)
  1772.  
  1773. [TaskBand.FlashButtonGroupMenu]
  1774. BgType  = ImageFile
  1775. SizingType  = Stretch
  1776. SizingMargins   = 4, 4, 4, 4
  1777. ContentMargins  = 0, 0, 4, 4
  1778. ImageFile = Blue\TaskBandFlashButtonGroupMenu.bmp
  1779. ImageCount  = 1
  1780. Transparent = True
  1781. FillColorHint = 56 130 234; Average background color (blue)
  1782. AccentColorHint = 255 192 91; Attention hilite color (orange)
  1783.  
  1784. [TaskBand.GroupCount]
  1785. Font= Tahoma, 8, Bold
  1786. TextColor   = 255 204 109
  1787.  
  1788. [TaskBand::Toolbar]
  1789. BgType  = None
  1790. Font= Tahoma, 8
  1791. TextColor   = 255 255 255
  1792.  
  1793. [TaskBand::Toolbar.Button]
  1794. BgType  = ImageFile
  1795. SizingType  = Stretch
  1796. SizingMargins   = 17, 5, 15, 8
  1797. ContentMargins  = 0, 4, 4, 4
  1798. ImageFile = Blue\TaskBandButton.bmp
  1799. ImageCount  = 6
  1800. ImageLayout = vertical
  1801. Transparent = True
  1802. FillColorHint = 54 127 239
  1803.  
  1804. [TaskBand::Toolbar.DropdownButton]
  1805. BgType  = ImageFile
  1806. SizingType  = Stretch
  1807. SizingMargins   = 17, 5, 15, 8
  1808. ContentMargins  = 0, 4, 4, 4
  1809. ImageFile = Blue\TaskBandButton.bmp
  1810. ImageCount  = 6
  1811. ImageLayout = vertical
  1812. Transparent = True
  1813. FillColorHint = 54 127 239; Average background color (blue)
  1814.  
  1815. [TaskBandVert::Toolbar]
  1816. BgType  = None
  1817. Font= Tahoma, 8
  1818. TextColor   = 255 255 255
  1819.  
  1820. [TaskBandVert::Toolbar.Button]
  1821. BgType  = ImageFile
  1822. SizingType  = Stretch
  1823. SizingMargins   = 16, 7, 12, 6
  1824. ContentMargins  = 0, 4, 4, 4
  1825. ImageFile = Blue\TaskBandButtonVertical.bmp
  1826. ImageCount  = 6
  1827. ImageLayout = vertical
  1828. Transparent = True
  1829. FillColorHint = 54 127 239; Average background color (blue)
  1830.  
  1831. [TaskBandVert::Toolbar.DropdownButton]
  1832. BgType  = ImageFile
  1833. SizingType  = Stretch
  1834. SizingMargins   = 16, 7, 12, 6
  1835. ContentMargins  = 0, 4, 4, 4
  1836. ImageFile = Blue\TaskBandButtonVertical.bmp
  1837. ImageCount  = 6
  1838. ImageLayout = vertical
  1839. Transparent = True
  1840. FillColorHint = 54 127 239; Average background color (blue)
  1841.  
  1842. [TaskBand::ScrollBar.ArrowBtn]
  1843. BgType  = ImageFile
  1844. SizingMargins = 5, 5, 5, 5
  1845. ContentMargins = 0, 0, 0, 0
  1846. SizingType = Stretch
  1847. ImageFile = Blue\TaskbandScrollArrows.bmp
  1848. ImageCount = 20
  1849. ImageLayout = Vertical
  1850. GlyphType   = ImageGlyph
  1851. GlyphImageFile = Blue\TaskBandScrollArrowGlyphs.bmp
  1852. GlyphTransparent = True
  1853. FillColorHint = 25 66 205; Average background color (dark blue)
  1854.  
  1855. [TaskBand::Scrollbar.ThumbBtnHorz]
  1856. BgType  = ImageFile
  1857. SizingMargins = 5, 5, 5, 5
  1858. ContentMargins = 4, 4, 0, 0
  1859. ImageFile = Blue\TaskBandScrollThumbHorizontal.bmp
  1860. ImageCount  = 5
  1861. ImageLayout = Vertical
  1862. FillColorHint = 25 66 205; Average background color (dark blue)
  1863.  
  1864. ;A visual element in the middle of the scrollbar thumb
  1865. [TaskBand::Scrollbar.GripperHorz]
  1866. BgType  = ImageFile
  1867. SizingType  = TrueSize
  1868. ImageFile = Blue\TaskBandScrollThumbGripperHorizontal.BMP
  1869. imagelayout = vertical
  1870. Transparent = True
  1871. ImageCount  = 5
  1872. FillColorHint = 44 96 226; Thumb gripper lighter color (blue)
  1873.  
  1874.  
  1875. ; Scrollbar Thumb (vertical)
  1876. [TaskBand::Scrollbar.ThumbBtnVert]
  1877. BgType  = ImageFile
  1878. SizingMargins = 5, 5, 5, 5
  1879. ContentMargins = 0, 0, 4, 4
  1880. ImageFile = Blue\TaskBandScrollThumbVertical.bmp
  1881. ImageCount  = 5
  1882. ImageLayout = vertical
  1883. FillColorHint = 25 66 205; Average background color (dark blue)
  1884.  
  1885. ;A visual element in the middle of the scrollbar thumb
  1886. [TaskBand::Scrollbar.GripperVert]
  1887. BgType  = ImageFile
  1888. SizingType  = TrueSize
  1889. ImageFile = Blue\TaskBandScrollThumbGripperVertical.BMP
  1890. ImageCount  = 4
  1891. Transparent = True
  1892. ImageLayout = Vertical
  1893. FillColorHint = 44 96 226; Thumb gripper lighter color (blue)
  1894.  
  1895.  
  1896. ; Scrollbar Tracks (horizontal)
  1897. [TaskBand::Scrollbar.LowerTrackHorz]
  1898. BgType  = imagefile
  1899. ImageFile = Blue\TaskBandScrollShaftHorizontal.bmp
  1900. SizingMargins = 0, 0, 1, 1
  1901. ImageCount = 4
  1902. ImageLayout = Vertical
  1903. FillColorHint = 37 90 225; Average background color (blue)
  1904.  
  1905.  
  1906. [TaskBand::Scrollbar.UpperTrackHorz]
  1907. BgType  = imagefile
  1908. ImageFile = Blue\TaskBandScrollShaftHorizontal.bmp
  1909. SizingMargins = 0, 0, 1, 1
  1910. ImageCount = 4
  1911. ImageLayout = Vertical
  1912. FillColorHint = 37 90 225; Average background color (blue)
  1913.  
  1914.  
  1915. ; Scrollbar Tracks (vertical)
  1916. [TaskBand::Scrollbar.LowerTrackVert]
  1917. BgType  = imagefile
  1918. ImageFile = Blue\TaskBandScrollShaftVertical.bmp
  1919. SizingMargins = 1, 1, 0, 0
  1920. ImageCount = 4
  1921. ImageLayout = Vertical
  1922. FillColorHint = 37 90 225; Average background color (blue)
  1923.  
  1924.  
  1925. [TaskBand::Scrollbar.UpperTrackVert]
  1926. BgType  = imagefile
  1927. ImageFile = Blue\TaskBandScrollShaftVertical.bmp
  1928. SizingMargins = 1, 1, 0, 0
  1929. ImageCount = 4
  1930. ImageLayout = Vertical
  1931. FillColorHint = 37 90 225; Average background color (blue)
  1932.  
  1933. ;-------------- Taskband Group Menu specific --------------
  1934. [TaskBandGroupMenu::Toolbar]
  1935. BgType  = ImageFile
  1936. ImageFile = Blue\TaskBandBackground.bmp
  1937. SizingType    = Tile
  1938. SizingMargins    = 3, 3, 3, 3
  1939. ContentMargins    = 9, 0, 0, 0
  1940. Font= Tahoma, 8
  1941. TextColor   = 255 255 255
  1942. FillColorHint = 33 87 213; Average background color (blue)
  1943. AccentColorHint = 255 199 60; Menu top hilite color (orange)
  1944.  
  1945.  
  1946. [TaskBandGroupMenu::Toolbar.Button]
  1947. BgType  = ImageFile
  1948. SizingType  = stretch
  1949. SizingMargins   = 3, 3, 0, 0
  1950. ContentMargins  = 9, 0, 3, 3
  1951. ImageFile = Blue\TaskBandHover.bmp
  1952. ImageCount  = 3
  1953. ImageLayout    = vertical
  1954. Transparent    = True
  1955. AccentColorHint = 79 150 255; Rollover hilite color (blue)
  1956.  
  1957. ;-------------- Tray Notify specific --------------
  1958. [TrayNotify::Toolbar]
  1959. BgType  = None
  1960.  
  1961. [TrayNotify::Toolbar.Button]
  1962. BgType  = None
  1963.  
  1964. [TrayNotifyHoriz::TrayNotify.Background]
  1965. BgType  = ImageFile
  1966. SizingType  = Stretch
  1967. SizingMargins   = 34, 10, 12, 12
  1968. ContentMargins  = 19, 7, 0, 0
  1969. ImageFile = Blue\TaskbarTray.bmp
  1970. ImageCount  = 1
  1971. Transparent = True
  1972. TransparentColor= 255 0 0
  1973. FillColorHint = 13 141 234; Average background color (blue)
  1974.  
  1975. [TrayNotifyHoriz::Button]
  1976. BgType  = ImageFile
  1977. SizingType  = TrueSize
  1978. ImageFile = Blue\TrayChevronHorizontal.bmp
  1979. ImageCount  = 3
  1980. Imagelayout = vertical
  1981. FillColorHint = 56 173 243; Average background color (blue)
  1982.  
  1983. [TrayNotifyHorizOpen::Button]
  1984. BgType  = ImageFile
  1985. SizingType  = TrueSize
  1986. ImageFile = Blue\TrayChevronHorizontalOpen.bmp
  1987. ImageCount  = 3
  1988. Imagelayout = vertical
  1989. FillColorHint = 56 173 243; Average background color (blue)
  1990.  
  1991. [TrayNotifyVert::TrayNotify.Background]
  1992. BgType  = ImageFile
  1993. SizingType  = Stretch
  1994. SizingMargins   = 12, 12, 34, 10
  1995. ContentMargins  = 0, 0, 19, 7
  1996. ImageFile = Blue\TaskbarTrayVertical.bmp
  1997. ImageCount  = 1
  1998. Transparent = True
  1999. TransparentColor= 255 0 0
  2000. FillColorHint = 13 141 234; Average background color (blue)
  2001.  
  2002. [TrayNotifyVert::Button]
  2003. BgType  = ImageFile
  2004. SizingType  = TrueSize
  2005. Transparent = True
  2006. ImageFile = Blue\TrayChevronHorizontal.bmp
  2007. ImageCount  = 3
  2008. Imagelayout = vertical
  2009. FillColorHint = 56 173 243; Average background color (blue)
  2010.  
  2011.  
  2012. [TrayNotifyVertOpen::Button]
  2013. BgType  = ImageFile
  2014. SizingType  = TrueSize
  2015. Transparent = True
  2016. ImageFile = Blue\TrayChevronHorizontalOpen.bmp
  2017. ImageCount  = 3
  2018. Imagelayout = vertical
  2019. FillColorHint = 56 173 243; Average background color (blue)
  2020.  
  2021.  
  2022. [TrayNotify::Clock]
  2023. Font= Tahoma, 8
  2024. TextColor   = 255 255 255
  2025.  
  2026. ;-------------- Application-specific ------------------------
  2027.  
  2028.  
  2029. ;----------- places bar --------------------------------
  2030. ;The places toolbar in the fileopen/save dialog.
  2031. [Placesbar::Toolbar]
  2032. SizingMargins = 4, 4, 4, 4
  2033. ContentMargins = 0, 0, 0, 0
  2034. ImageFile = Blue\PlaceBarBackground.bmp
  2035. bgtype = imagefile
  2036. imageCount = 1
  2037. sizingType = tile
  2038. FillColorHint = 249 248 243; Background color (light beige)
  2039.  
  2040. [Placesbar::Toolbar.Button]
  2041. SizingMargins = 4, 4, 4, 4
  2042. ContentMargins = 0, 0, 4, 2
  2043. ImageFile = Blue\PlaceBarButtons.bmp
  2044. bgtype = imagefile
  2045. imagelayout = vertical
  2046. imageCount = 6
  2047. sizingType = stretch
  2048. transparent = true
  2049. FillColorHint = 255 255 255; Selected color (white)
  2050. BorderColorHint = 122 152 175; Outline color (blue grey)
  2051.  
  2052. ;----------- Explorer (IE) bar --------------------------------
  2053. [ExplorerBar]
  2054. BgType  = BorderFill
  2055. FillType= VertGradient
  2056. GradientRatio1  = 0
  2057. GradientColor1  = 140 170 230
  2058. GradientRatio2  = 255
  2059. GradientColor2  = 100 135 220
  2060. BorderSize  = 0
  2061. ContentMargins  = 12, 12, 12, 12
  2062.  
  2063. [ExplorerBar.HeaderBackground]; Not used in IE 6
  2064. BgType  = ImageFile
  2065. SizingType  = Stretch
  2066. ImageFile = Blue\ExplorerBarHeaderBackground.bmp
  2067. SizingMargins   = 202, 1, 0, 0
  2068. Font= Tahoma, 8, Bold
  2069. TextColor   = 255 255 255
  2070. ContentMargins  = 8, 8, 7, 7
  2071. FillColorHint = 94 135 217; Mid color of gradient (blue)
  2072.  
  2073. [ExplorerBar.HeaderClose]; Not used in IE 6
  2074. BgType  = ImageFile
  2075. SizingType  = TrueSize
  2076. ImageLayout = Vertical
  2077. ImageFile = Blue\ExplorerBarHeaderClose.bmp
  2078. ImageCount  = 3
  2079. Transparent = true
  2080. OffsetType  = TopRight
  2081. Offset  = -4, 4
  2082. FillColorHint = 138 168 229; Close box normal state (blue)
  2083. AccentColorHint = 255 121 95; Close box rollover (brick red)
  2084.  
  2085. [ExplorerBar.HeaderPin]; Not used in IE 6
  2086. BgType  = ImageFile
  2087. SizingType  = TrueSize
  2088. ImageLayout = Vertical
  2089. ImageFile = Blue\ExplorerBarHeaderPin.bmp
  2090. ImageCount  = 6
  2091. Transparent = true
  2092. OffsetType  = TopRight
  2093. Offset  = -6, 4
  2094. FillColorHint = 189 206 239; Average pin color (blue grey)
  2095.  
  2096. [ExplorerBar.IEBarMenu]; Not used in IE 6
  2097. BgType  = ImageFile
  2098. SizingType  = TrueSize
  2099. ImageLayout = Vertical
  2100. ImageFile = Blue\IE_PersonalBarMenu.bmp
  2101. ImageCount  = 3
  2102. Transparent = true
  2103. OffsetType  = TopRight
  2104. Offset  = -3, 1
  2105. FillColorHint = 236 240 249; Average button background color (light grey blue)
  2106. BorderColorHint = 165 187 228; Border of button (blue grey)
  2107.  
  2108. [ExplorerBar.NormalGroupBackground]
  2109. BgType  = ImageFile
  2110. FillColor = 214 223 247
  2111. BorderColor = 255 255 255
  2112. SizingType  = Stretch
  2113. ImageFile = Blue\NormalGroupBackground.bmp
  2114. SizingMargins   = 3, 3, 3, 3
  2115. Font= Tahoma, 8
  2116. TextColor   = 38 92 192
  2117. ContentMargins  = 8, 8, 7, 7
  2118.  
  2119. [ExplorerBar.NormalGroupCollapse]
  2120. BgType  = ImageFile
  2121. SizingType  = TrueSize
  2122. ImageLayout = Vertical
  2123. ImageFile = Blue\NormalGroupCollapse.bmp
  2124. ImageCount  = 3
  2125. Transparent = true
  2126. OffsetType  = TopRight
  2127. Offset  = -3, 1
  2128. FillColorHint = 236 240 249; Average button background color (light grey blue)
  2129. BorderColorHint = 165 187 228; Border of button (blue grey)
  2130.  
  2131. [ExplorerBar.NormalGroupExpand]
  2132. BgType  = ImageFile
  2133. SizingType  = TrueSize
  2134. ImageLayout = Vertical
  2135. ImageFile = Blue\NormalGroupExpand.bmp
  2136. ImageCount  = 3
  2137. Transparent = true
  2138. OffsetType  = TopRight
  2139. Offset  = -3, 1
  2140. FillColorHint = 236 240 249; Average button background color (light grey blue)
  2141. BorderColorHint = 165 187 228; Border of button (blue grey)
  2142.  
  2143. [ExplorerBar.NormalGroupHead]
  2144. BgType  = ImageFile
  2145. SizingType  = Stretch
  2146. ImageFile = Blue\NormalGroupHead.bmp
  2147. SizingMargins   = 3, 106, 3, 1
  2148. Transparent = true
  2149. Font= Tahoma, 8, Bold
  2150. TextColor   = 33 93 198
  2151. ContentMargins  = 8, 8, 7, 7
  2152. FillColorHint = 240 243 251; Lighter side of gradient (very light blue)
  2153.  
  2154. [ExplorerBar.SpecialGroupBackground]
  2155. BgType  = ImageFile
  2156. SizingType  = Stretch
  2157. ImageFile = Blue\SpecialGroupBackground.bmp
  2158. SizingMargins   = 3, 3, 3, 3
  2159. Font= Tahoma, 8
  2160. TextColor   = 38 92 192
  2161. ContentMargins  = 8, 8, 7, 7
  2162. FillColorHint = 239 243 255; Background color (very light blue)
  2163.  
  2164. [ExplorerBar.SpecialGroupCollapse]
  2165. BgType  = ImageFile
  2166. SizingType  = TrueSize
  2167. ImageLayout = Vertical
  2168. ImageFile = Blue\SpecialGroupCollapse.bmp
  2169. ImageCount  = 3
  2170. Transparent = true
  2171. OffsetType  = TopRight
  2172. Offset  = -3, 1
  2173. FillColorHint = 36 89 195; Average background color (dark blue)
  2174. BorderColorHint = 70 114 205; Edge color (dark blue)
  2175.  
  2176.  
  2177. [ExplorerBar.SpecialGroupExpand]
  2178. BgType  = ImageFile
  2179. SizingType  = TrueSize
  2180. ImageLayout = Vertical
  2181. ImageFile = Blue\SpecialGroupExpand.bmp
  2182. ImageCount  = 3
  2183. Transparent = true
  2184. OffsetType  = TopRight
  2185. Offset  = -3, 1
  2186. FillColorHint = 36 89 195; Average background color (dark blue)
  2187. BorderColorHint = 70 114 205; Edge color (dark blue)
  2188.  
  2189.  
  2190. [ExplorerBar.SpecialGroupHead]
  2191. BgType  = ImageFile
  2192. SizingType  = Stretch
  2193. ImageFile = Blue\SpecialGroupHead.bmp
  2194. SizingMargins   = 3, 106, 3, 1
  2195. Transparent = true
  2196. Font= Tahoma, 8, Bold
  2197. TextColor   = 255 255 255
  2198. FillColor = 2 72 178
  2199. ContentMargins  = 8, 8, 7, 7
  2200.  
  2201. [ExplorerBar::Rebar]; Not used in IE6
  2202. bgtype  = imagefile
  2203. sizingtype  = stretch
  2204. ImageFile = Blue\ExplorerBarToolbarBackground.bmp
  2205. sizingmargins   = 0, 0, 0, 4
  2206. Font= Tahoma, 8
  2207. TextColor   = 127 124 115
  2208. FillColorHint = 243 247 253; (very light blue)
  2209.  
  2210. [ExplorerBar::Rebar.Band]; Not used in IE6
  2211. bgtype  = none
  2212. ContentMargins    = 2, 0, 0, 0
  2213.  
  2214. [ExplorerBar::Rebar.Gripper]; Not used in IE6
  2215. bgtype = imagefile
  2216. SizingMargins   = 0, 0, 6, 4
  2217. ContentMargins  = 3, 0, 0, 0
  2218. ImageFile = Blue\Gripper.bmp
  2219. sizingType  = Tile
  2220. Transparent = true
  2221. TransparentColor= 255 0 0
  2222. FillColorHint = 171 167 149; Gripper dot color (dark beige)
  2223.  
  2224. [ExplorerBar::Rebar.GripperVert]; Not used in IE6
  2225. bgtype  = imagefile
  2226. SizingMargins   = 9, 8, 0, 0
  2227. ImageFile = Blue\GripperVert.bmp
  2228. sizingType  = Tile
  2229. Transparent = true
  2230. TransparentColor= 255 0 0
  2231. FillColorHint = 171 167 149; Gripper dot color (dark beige)
  2232.  
  2233. [ExplorerBar::Rebar.Chevron]; Not used in IE6
  2234. SizingMargins   = 4, 4, 4, 4
  2235. ContentMargins  = 0, 0, 0, 0
  2236. ImageFile = Blue\ExplorerBarToolbarButtons.bmp
  2237. bgtype  = imagefile
  2238. imagelayout = vertical
  2239. imageCount  = 6
  2240. sizingType  = Stretch
  2241. Transparent = true
  2242. GlyphType   = ImageGlyph
  2243. GlyphImageFile = Blue\Chevron.bmp
  2244. GlyphTransparent= true
  2245. VAlign  = Top
  2246. FillColorHint = 0 0 0; Glyph color (black)
  2247.  
  2248. [ExplorerBar::Rebar.ChevronVert]; Not used in IE6
  2249. SizingMargins   = 4, 4, 4, 4
  2250. ContentMargins  = 0, 0, 0, 0
  2251. ImageFile = Blue\ExplorerBarToolbarButtons.bmp
  2252. bgtype  = imagefile
  2253. imagelayout = vertical
  2254. imageCount  = 6
  2255. sizingType  = Stretch
  2256. Transparent = true
  2257. GlyphType   = ImageGlyph
  2258. GlyphImageFile = Blue\Chevron.bmp
  2259. GlyphTransparent= true
  2260. VAlign  = Top
  2261. FillColorHint = 0 0 0; Glyph color (black)
  2262.  
  2263. [ExplorerBar::Toolbar.Button]; Not used in IE6
  2264. SizingMargins   = 4, 4, 4, 4
  2265. ContentMargins  = 0, 0, 0, 0
  2266. ImageFile = Blue\ExplorerBarToolbarButtons.bmp
  2267. bgtype  = imagefile
  2268. imagelayout = vertical
  2269. imageCount  = 6
  2270. sizingType  = Stretch
  2271. Transparent = true
  2272. TransparentColor= 255 0 255
  2273. FillColorHint = 238 243 248; Average fill color (light blue grey)
  2274. BorderColorHint = 168 191 234; Edge color (grey blue)
  2275.  
  2276. [ExplorerBar::Toolbar.DropdownButton]; Not used in IE6
  2277. SizingMargins   = 4, 4, 4, 4
  2278. ContentMargins  = 0, 0, 0, 0
  2279. ImageFile = Blue\ExplorerBarToolbarButtons.bmp
  2280. bgtype  = imagefile
  2281. imagelayout = vertical
  2282. imageCount  = 6
  2283. sizingType  = Stretch
  2284. Transparent = true
  2285. TransparentColor= 255 0 255
  2286. FillColorHint = 238 243 248; Average fill color (light blue grey)
  2287. BorderColorHint = 168 191 234; Edge color (grey blue)
  2288.  
  2289. [ExplorerBar::Toolbar.SplitButton]; Not used in IE6
  2290. SizingMargins   = 4, 2, 4, 4
  2291. ImageFile = Blue\ExplorerBarToolbarButtonsSplit.bmp
  2292. bgtype  = imagefile
  2293. imagelayout = vertical
  2294. imageCount  = 6
  2295. sizingType  = Stretch
  2296. Transparent = true
  2297. TransparentColor= 255 0 255
  2298. FillColorHint = 238 243 248; Average fill color (light blue grey)
  2299. BorderColorHint = 168 191 234; Edge color (grey blue)
  2300.  
  2301. [ExplorerBar::Toolbar.SplitButtonDropdown]; Not used in IE6
  2302. SizingMargins   = 2, 4, 4, 4
  2303. ImageFile = Blue\ExplorerBarToolbarButtonsSplitDropdown.bmp
  2304. bgtype  = imagefile
  2305. imagelayout = vertical
  2306. imageCount  = 6
  2307. sizingType  = Stretch
  2308. Transparent = true
  2309. TransparentColor= 255 0 255
  2310. GlyphType   = ImageGlyph
  2311. GlyphImageFile = Blue\ToolbarButtonsSplitDropdownGlyph.bmp
  2312. GlyphTransparent= true
  2313. FillColorHint = 238 243 248; Average fill color (light blue grey)
  2314. BorderColorHint = 168 191 234; Edge color (grey blue)
  2315.  
  2316. [ExplorerBar::Toolbar.Separator]; Not used in IE6
  2317. SizingMargins   = 5, 2, 2, 1
  2318. ImageFile = Blue\Separator.bmp
  2319. bgtype  = imagefile
  2320. imageCount  = 1
  2321. sizingType  = tile
  2322. Transparent = true
  2323. TransparentColor= 255 0 0
  2324. FillColorHint = 202 198 175; Separator line color (dark beige)
  2325.  
  2326. [ExplorerBar::Toolbar.SeparatorVert]; Not used in IE6
  2327. SizingMargins   = 2, 1, 5, 1
  2328. ImageFile = Blue\SeparatorVert.bmp
  2329. bgtype  = imagefile
  2330. imageCount  = 1
  2331. sizingType  = tile
  2332. Transparent = true
  2333. TransparentColor= 255 0 0
  2334. FillColorHint = 202 198 175; Separator line color (dark beige)